cmte
Version:
Design by Committee™ except it's just you and LLMs
20 lines (17 loc) • 298 B
Markdown
```javascript
/**
* moduleB.js - Another sample module.
*/
export const add = (a, b) => {
return a + b;
};
export default class Calculator {
constructor(initialValue = 0) {
this.value = initialValue;
}
multiply(factor) {
this.value *= factor;
return this.value;
}
}
```